home *** CD-ROM | disk | FTP | other *** search
- #ifndef _FORM_H_
- #define _FORM_H_
-
- #include "bl.h"
- #include "textmenu.h"
- #include "button.h"
- #include "ceditl.h"
-
- class Form : public Bl
- {
- protected:
- TextMenu* printer_type;
- TextMenu* density;
- TextMenu* paper;
- CaptureEditLine* pass;
- CaptureEditLine* lt;
- CaptureEditLine* mx;
- CaptureEditLine* my;
- CaptureEditLine* dx;
- CaptureEditLine* dy;
- CaptureEditLine* copies;
- Button* go;
- public:
- int p_t, d, pap, pas, l, m_x, m_y, d_x, d_y, cop;
-
- Form();
- virtual void exe(int act = 0);
-
- };
-
- #endif _FORM_H_